home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1996 May: Tool Chest / Developer CD Series May 1996 (Tool Chest) (Apple Computer) (1996).iso / Tool Chest / Development Tools & Languages / Dylan Related / Thomas / MacGambit⁄Thomas / MacGambit⁄Thomas Sources / Thomas 1.1 sources / build-Thomas.scm next >
Encoding:
Text File  |  1995-03-15  |  1.3 KB  |  43 lines  |  [TEXT/gamI]

  1. ;;;Compiles up Thomas1.1
  2. (set! $path "ZFP 240-Q:Robot Stuff:MacGambit:Thomas 1.1 sources:")
  3. (set! $files '("poplat"
  4.                "hash"
  5.                "record"
  6.                "msort"
  7.                "dynwind"
  8.                "implementation-specific"
  9.                "support"
  10.                "comp-util"
  11.                "compiler"
  12.                "comp-method"
  13.                "comp-class"
  14.                "comp-sf"
  15.                "comp-exc"
  16.                "class"
  17.                "generic"
  18.                "class-structure"
  19.                "run-top"
  20.                "run-internal"
  21.                "run-methods"
  22.                "run-functions"
  23.                "run-bitstrings"
  24.                "run-collections"
  25.                "run-collections-iterate"
  26.                "run-collections-generic1"
  27.                "run-collections-generic2"
  28.                "run-collections-array"
  29.                "run-collections-deque"
  30.                "run-collections-list"
  31.                "run-collections-range"
  32.                "run-collections-string"
  33.                "run-collections-table"
  34.                "run-collections-vector"
  35.                "run-exceptions"
  36.                "rep"))
  37.  
  38. (do ((file $files (cdr file)))
  39.     ((null? file))
  40.   (write (car file)) (Newline)
  41.   (compile-file (string-append $path (car file) ".scm")))
  42.  
  43.